body {
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    animation: fadeIn 1s ease-in-out;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  .campus-info {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    transition: box-shadow 0.3s ease;
    animation: slideUp 1s ease-out;
  }
  
  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .campus-info:hover {
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    transform: scale(1.02);
  }
  
  .campus-info h2 {
    color: #007bff;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
    animation: fadeIn 1.5s ease-in-out;
  }
  
  .campus-info h2:hover {
    color: #0056b3;
    transform: scale(1.05);
  }
  
  .campus-info p {
    color: #333;
    line-height: 1.8;
    font-size: 16px;
    margin-top: 15px;
    animation: fadeIn 2s ease-in-out;
  }
  
  .feature-list {
    padding: 0;
    list-style: none;
    animation: fadeIn 1.5s ease-in-out;
  }
  
  .feature-list li {
    margin-bottom: 10px;
    font-size: 15px;
    padding-left: 20px;
    position: relative;
    opacity: 0;
    animation: listItemSlideIn 0.8s ease forwards;
    animation-delay: 0.3s;
  }
  
  @keyframes listItemSlideIn {
    from {
      opacity: 0;
      transform: translateX(-20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .feature-list li:before {
    content: "•";
    color: #007bff;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 0;
    transition: color 0.3s ease;
  }
  
  button {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    animation: fadeIn 2s ease-in-out;
  }
  
  button:hover {
    background-color: #0056b3;
    transform: scale(1.1);
  }
  
  a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
    animation: fadeIn 1.5s ease-in-out;
  }
  
  a:hover {
    color: #0056b3;
  }
    /* Custom Styles */
    .container {
        padding: 2rem;
        animation: fadeIn 1.5s ease;
      }
      
      h2 {
        font-size: 2.5rem;
        color: #2c3e50;
        position: relative;
        animation: slideDown 1.5s ease;
      }
      
      h2::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -10px;
        width: 80px;
        height: 4px;
        background-color: #3498db;
        border-radius: 2px;
        animation: grow 1s ease 1s forwards;
        opacity: 0;
      }
      
      p, li {
        font-size: 1.1rem;
        color: #34495e;
        transition: transform 0.3s;
      }
      
      .campus-info p:hover, .feature-list li:hover {
        transform: translateX(10px);
      }
      
      .feature-list {
        list-style: none;
        padding: 0;
      }
      
      .feature-list li {
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        font-size: 1.1rem;
      }
      
      .feature-list li i {
        margin-right: 0.5rem;
        color: #3498db;
        animation: iconBounce 1.5s infinite alternate;
      }
      
      /* Animations */
      @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
      }
      
      @keyframes slideDown {
        from { transform: translateY(-20px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
      }
      
      @keyframes grow {
        from { width: 0; opacity: 0; }
        to { width: 80px; opacity: 1; }
      }
      
      @keyframes iconBounce {
        from { transform: translateY(0); }
        to { transform: translateY(-5px); }
      }
      .learn.More {
        text-align: center;
    }    